home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / C / TCCLIB.ZIP / SETATTR.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-07-18  |  198 b   |  13 lines

  1. #include <conio.h>
  2.  
  3. extern unsigned char attrib;
  4. void TcclibInitialize( void );
  5.  
  6. void SetAttrib( char attribute  )
  7. {
  8.     TcclibInitialize();
  9.  
  10.     attrib = attribute;
  11.     textattr( attribute );
  12. }
  13.